home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / MapMaker / Source / fractal.h < prev    next >
Text File  |  1990-12-04  |  590b  |  28 lines

  1. /*
  2. ** fractal.h
  3. ** header file for fractal.c
  4. **  segmentation and fractalizing routines 
  5. ** for project : MapMaker  
  6. ** using NeXTStep and mach Unix.
  7. ** CPSC 414 Assignment No. 4 Project
  8. **  
  9. ** Programmed by Bradley Head and Thomas Burkholder 
  10. ** December 1990
  11. */
  12. /* fractal.h. */
  13.  
  14.  
  15. typedef struct FractValues {
  16.     int Fractalize;
  17.     float f;
  18.     float H;
  19.     float StdDev;
  20.     } FractValues;
  21.     
  22. float Gauss();
  23. void insertFSegments(PointList *pin, PointList *pout,ProjParam *pparam);
  24. void Fract(Point a, Point b, float StdDev, PointList *plist);
  25. int setFValues(int Fractalize, float H, float StdDev);
  26.  
  27.  
  28.